home *** CD-ROM | disk | FTP | other *** search
/ MacAddict 123 / MacAddict_123_2006_11.iso / Software / Internet & Communication / GarageSale 2.4.4.dmg / GarageSale.app / Contents / Resources / GarageSale.wdgt / French.lproj / localizedStrings.js
Text (UTF-16)  |  2006-08-27  |  1KB  |  23 lines

  1.  
  2. var localizedStrings = new Array;
  3.  
  4. localizedStrings['Done'] = 'Terminé';
  5. localizedStrings['Auction Title'] = 'Titre';
  6. localizedStrings['Time Remaining'] = 'Temps restant';
  7. localizedStrings['Bid'] = 'Enchère';
  8. localizedStrings['Watchers'] = 'Watchers';
  9. localizedStrings['Bid Count'] = 'Bid Count';
  10. localizedStrings['Sold/Quantity'] = 'Sold/Quantity';
  11.  
  12. function getLocalizedString (key) 
  13.     try { 
  14.         var ret = localizedStrings[key]; 
  15.         if (ret == undefined) 
  16.             ret = key; 
  17.         return ret; 
  18.     } catch (ex) {} 
  19.     return key; 
  20. }
  21.  
  22.